- /* sdfatana.cpp by K.Tsuru */
- // function ID 3602 DRADIX
- /***********************************************************
- SDouble class
- inverse trigonometric function arctan x using Asin function.
- arctan x = arcsin(x/Sqrt(1+x*x))
- ************************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SDouble AtanA(const SDouble& x){
- SDouble y;
- y = x*RecSqrt(1 + x*x);
- return Asin(y);
- }
sdfatana.cpp : last modifiled at 2015/12/03 21:32:13(434 bytes)
created at 2017/10/07 10:22:50
The creation time of this html file is 2017/10/07 11:29:39 (Sat Oct 07 11:29:39 2017).